home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / distutils / command / config.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  12KB  |  352 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''distutils.command.config
  5.  
  6. Implements the Distutils \'config\' command, a (mostly) empty command class
  7. that exists mainly to be sub-classed by specific module distributions and
  8. applications.  The idea is that while every "config" command is different,
  9. at least they\'re all named the same, and users always see "config" in the
  10. list of standard commands.  Also, this is a good place to put common
  11. configure-like tasks: "try to compile this C code", or "figure out where
  12. this header file lives".
  13. '''
  14. __revision__ = '$Id: config.py,v 1.18 2004/11/10 22:23:15 loewis Exp $'
  15. import sys
  16. import os
  17. import string
  18. import re
  19. from types import *
  20. from distutils.core import Command
  21. from distutils.errors import DistutilsExecError
  22. from distutils.sysconfig import customize_compiler
  23. from distutils import log
  24. LANG_EXT = {
  25.     'c': '.c',
  26.     'c++': '.cxx' }
  27.  
  28. class config(Command):
  29.     description = 'prepare to build'
  30.     user_options = [
  31.         ('compiler=', None, 'specify the compiler type'),
  32.         ('cc=', None, 'specify the compiler executable'),
  33.         ('include-dirs=', 'I', 'list of directories to search for header files'),
  34.         ('define=', 'D', 'C preprocessor macros to define'),
  35.         ('undef=', 'U', 'C preprocessor macros to undefine'),
  36.         ('libraries=', 'l', 'external C libraries to link with'),
  37.         ('library-dirs=', 'L', 'directories to search for external C libraries'),
  38.         ('noisy', None, 'show every action (compile, link, run, ...) taken'),
  39.         ('dump-source', None, 'dump generated source files before attempting to compile them')]
  40.     
  41.     def initialize_options(self):
  42.         self.compiler = None
  43.         self.cc = None
  44.         self.include_dirs = None
  45.         self.libraries = None
  46.         self.library_dirs = None
  47.         self.noisy = 1
  48.         self.dump_source = 1
  49.         self.temp_files = []
  50.  
  51.     
  52.     def finalize_options(self):
  53.         if self.include_dirs is None:
  54.             if not self.distribution.include_dirs:
  55.                 pass
  56.             self.include_dirs = []
  57.         elif type(self.include_dirs) is StringType:
  58.             self.include_dirs = string.split(self.include_dirs, os.pathsep)
  59.         
  60.         if self.libraries is None:
  61.             self.libraries = []
  62.         elif type(self.libraries) is StringType:
  63.             self.libraries = [
  64.                 self.libraries]
  65.         
  66.         if self.library_dirs is None:
  67.             self.library_dirs = []
  68.         elif type(self.library_dirs) is StringType:
  69.             self.library_dirs = string.split(self.library_dirs, os.pathsep)
  70.         
  71.  
  72.     
  73.     def run(self):
  74.         pass
  75.  
  76.     
  77.     def _check_compiler(self):
  78.         """Check that 'self.compiler' really is a CCompiler object;
  79.         if not, make it one.
  80.         """
  81.         CCompiler = CCompiler
  82.         new_compiler = new_compiler
  83.         import distutils.ccompiler
  84.         if not isinstance(self.compiler, CCompiler):
  85.             self.compiler = new_compiler(compiler = self.compiler, dry_run = self.dry_run, force = 1)
  86.             customize_compiler(self.compiler)
  87.             if self.include_dirs:
  88.                 self.compiler.set_include_dirs(self.include_dirs)
  89.             
  90.             if self.libraries:
  91.                 self.compiler.set_libraries(self.libraries)
  92.             
  93.             if self.library_dirs:
  94.                 self.compiler.set_library_dirs(self.library_dirs)
  95.             
  96.         
  97.  
  98.     
  99.     def _gen_temp_sourcefile(self, body, headers, lang):
  100.         filename = '_configtest' + LANG_EXT[lang]
  101.         file = open(filename, 'w')
  102.         if headers:
  103.             for header in headers:
  104.                 file.write('#include <%s>\n' % header)
  105.             
  106.             file.write('\n')
  107.         
  108.         file.write(body)
  109.         if body[-1] != '\n':
  110.             file.write('\n')
  111.         
  112.         file.close()
  113.         return filename
  114.  
  115.     
  116.     def _preprocess(self, body, headers, include_dirs, lang):
  117.         src = self._gen_temp_sourcefile(body, headers, lang)
  118.         out = '_configtest.i'
  119.         self.temp_files.extend([
  120.             src,
  121.             out])
  122.         self.compiler.preprocess(src, out, include_dirs = include_dirs)
  123.         return (src, out)
  124.  
  125.     
  126.     def _compile(self, body, headers, include_dirs, lang):
  127.         src = self._gen_temp_sourcefile(body, headers, lang)
  128.         if self.dump_source:
  129.             dump_file(src, "compiling '%s':" % src)
  130.         
  131.         (obj,) = self.compiler.object_filenames([
  132.             src])
  133.         self.temp_files.extend([
  134.             src,
  135.             obj])
  136.         self.compiler.compile([
  137.             src], include_dirs = include_dirs)
  138.         return (src, obj)
  139.  
  140.     
  141.     def _link(self, body, headers, include_dirs, libraries, library_dirs, lang):
  142.         (src, obj) = self._compile(body, headers, include_dirs, lang)
  143.         prog = os.path.splitext(os.path.basename(src))[0]
  144.         self.compiler.link_executable([
  145.             obj], prog, libraries = libraries, library_dirs = library_dirs, target_lang = lang)
  146.         if self.compiler.exe_extension is not None:
  147.             prog = prog + self.compiler.exe_extension
  148.         
  149.         self.temp_files.append(prog)
  150.         return (src, obj, prog)
  151.  
  152.     
  153.     def _clean(self, *filenames):
  154.         if not filenames:
  155.             filenames = self.temp_files
  156.             self.temp_files = []
  157.         
  158.         log.info('removing: %s', string.join(filenames))
  159.         for filename in filenames:
  160.             
  161.             try:
  162.                 os.remove(filename)
  163.             continue
  164.             except OSError:
  165.                 continue
  166.             
  167.  
  168.         
  169.  
  170.     
  171.     def try_cpp(self, body = None, headers = None, include_dirs = None, lang = 'c'):
  172.         """Construct a source file from 'body' (a string containing lines
  173.         of C/C++ code) and 'headers' (a list of header files to include)
  174.         and run it through the preprocessor.  Return true if the
  175.         preprocessor succeeded, false if there were any errors.
  176.         ('body' probably isn't of much use, but what the heck.)
  177.         """
  178.         CompileError = CompileError
  179.         import distutils.ccompiler
  180.         self._check_compiler()
  181.         ok = 1
  182.         
  183.         try:
  184.             self._preprocess(body, headers, include_dirs, lang)
  185.         except CompileError:
  186.             ok = 0
  187.  
  188.         self._clean()
  189.         return ok
  190.  
  191.     
  192.     def search_cpp(self, pattern, body = None, headers = None, include_dirs = None, lang = 'c'):
  193.         """Construct a source file (just like 'try_cpp()'), run it through
  194.         the preprocessor, and return true if any line of the output matches
  195.         'pattern'.  'pattern' should either be a compiled regex object or a
  196.         string containing a regex.  If both 'body' and 'headers' are None,
  197.         preprocesses an empty file -- which can be useful to determine the
  198.         symbols the preprocessor and compiler set by default.
  199.         """
  200.         self._check_compiler()
  201.         (src, out) = self._preprocess(body, headers, include_dirs, lang)
  202.         if type(pattern) is StringType:
  203.             pattern = re.compile(pattern)
  204.         
  205.         file = open(out)
  206.         match = 0
  207.         while None:
  208.             line = file.readline()
  209.             if line == '':
  210.                 break
  211.             
  212.             if pattern.search(line):
  213.                 match = 1
  214.                 break
  215.                 continue
  216.         file.close()
  217.         self._clean()
  218.         return match
  219.  
  220.     
  221.     def try_compile(self, body, headers = None, include_dirs = None, lang = 'c'):
  222.         """Try to compile a source file built from 'body' and 'headers'.
  223.         Return true on success, false otherwise.
  224.         """
  225.         CompileError = CompileError
  226.         import distutils.ccompiler
  227.         self._check_compiler()
  228.         
  229.         try:
  230.             self._compile(body, headers, include_dirs, lang)
  231.             ok = 1
  232.         except CompileError:
  233.             ok = 0
  234.  
  235.         if not ok or 'success!':
  236.             pass
  237.         log.info('failure.')
  238.         self._clean()
  239.         return ok
  240.  
  241.     
  242.     def try_link(self, body, headers = None, include_dirs = None, libraries = None, library_dirs = None, lang = 'c'):
  243.         """Try to compile and link a source file, built from 'body' and
  244.         'headers', to executable form.  Return true on success, false
  245.         otherwise.
  246.         """
  247.         CompileError = CompileError
  248.         LinkError = LinkError
  249.         import distutils.ccompiler
  250.         self._check_compiler()
  251.         
  252.         try:
  253.             self._link(body, headers, include_dirs, libraries, library_dirs, lang)
  254.             ok = 1
  255.         except (CompileError, LinkError):
  256.             ok = 0
  257.  
  258.         if not ok or 'success!':
  259.             pass
  260.         log.info('failure.')
  261.         self._clean()
  262.         return ok
  263.  
  264.     
  265.     def try_run(self, body, headers = None, include_dirs = None, libraries = None, library_dirs = None, lang = 'c'):
  266.         """Try to compile, link to an executable, and run a program
  267.         built from 'body' and 'headers'.  Return true on success, false
  268.         otherwise.
  269.         """
  270.         CompileError = CompileError
  271.         LinkError = LinkError
  272.         import distutils.ccompiler
  273.         self._check_compiler()
  274.         
  275.         try:
  276.             (src, obj, exe) = self._link(body, headers, include_dirs, libraries, library_dirs, lang)
  277.             self.spawn([
  278.                 exe])
  279.             ok = 1
  280.         except (CompileError, LinkError, DistutilsExecError):
  281.             ok = 0
  282.  
  283.         if not ok or 'success!':
  284.             pass
  285.         log.info('failure.')
  286.         self._clean()
  287.         return ok
  288.  
  289.     
  290.     def check_func(self, func, headers = None, include_dirs = None, libraries = None, library_dirs = None, decl = 0, call = 0):
  291.         '''Determine if function \'func\' is available by constructing a
  292.         source file that refers to \'func\', and compiles and links it.
  293.         If everything succeeds, returns true; otherwise returns false.
  294.  
  295.         The constructed source file starts out by including the header
  296.         files listed in \'headers\'.  If \'decl\' is true, it then declares
  297.         \'func\' (as "int func()"); you probably shouldn\'t supply \'headers\'
  298.         and set \'decl\' true in the same call, or you might get errors about
  299.         a conflicting declarations for \'func\'.  Finally, the constructed
  300.         \'main()\' function either references \'func\' or (if \'call\' is true)
  301.         calls it.  \'libraries\' and \'library_dirs\' are used when
  302.         linking.
  303.         '''
  304.         self._check_compiler()
  305.         body = []
  306.         if decl:
  307.             body.append('int %s ();' % func)
  308.         
  309.         body.append('int main () {')
  310.         if call:
  311.             body.append('  %s();' % func)
  312.         else:
  313.             body.append('  %s;' % func)
  314.         body.append('}')
  315.         body = string.join(body, '\n') + '\n'
  316.         return self.try_link(body, headers, include_dirs, libraries, library_dirs)
  317.  
  318.     
  319.     def check_lib(self, library, library_dirs = None, headers = None, include_dirs = None, other_libraries = []):
  320.         """Determine if 'library' is available to be linked against,
  321.         without actually checking that any particular symbols are provided
  322.         by it.  'headers' will be used in constructing the source file to
  323.         be compiled, but the only effect of this is to check if all the
  324.         header files listed are available.  Any libraries listed in
  325.         'other_libraries' will be included in the link, in case 'library'
  326.         has symbols that depend on other libraries.
  327.         """
  328.         self._check_compiler()
  329.         return self.try_link('int main (void) { }', headers, include_dirs, [
  330.             library] + other_libraries, library_dirs)
  331.  
  332.     
  333.     def check_header(self, header, include_dirs = None, library_dirs = None, lang = 'c'):
  334.         """Determine if the system header file named by 'header_file'
  335.         exists and can be found by the preprocessor; return true if so,
  336.         false otherwise.
  337.         """
  338.         return self.try_cpp(body = '/* No body */', headers = [
  339.             header], include_dirs = include_dirs)
  340.  
  341.  
  342.  
  343. def dump_file(filename, head = None):
  344.     if head is None:
  345.         print filename + ':'
  346.     else:
  347.         print head
  348.     file = open(filename)
  349.     sys.stdout.write(file.read())
  350.     file.close()
  351.  
  352.